ChannelActivity

open class ChannelActivity : AppCompatActivity

Activity displays a list of messages from a channel.

Types

Link copied to clipboard
open class IntentBuilder
This builder makes Intent for ChannelActivity.

Functions

Link copied to clipboard
protected open fun createFragment(): Fragment
It will be called when the ChannelActivity is being created.
Link copied to clipboard
open fun newIntent(@NonNull context: Context, @NonNull channelUrl: String): Intent
Create an intent for a ChannelActivity.
Link copied to clipboard
open fun newIntentFromCustomActivity(    @NonNull context: Context,     @NonNull cls: Class<out ChannelActivity>,     @NonNull channelUrl: String): Intent
Create an intent for a custom activity.
Link copied to clipboard
open fun newRedirectToMessageThreadIntent(    @NonNull context: Context,     @NonNull channelUrl: String,     messageId: Long): Intent
Create an intent for a ChannelActivity.
Link copied to clipboard
protected open fun onCreate(@Nullable savedInstanceState: Bundle)